From 8fda215cc015ca6909c344f0f221a60b7b9f86f6 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Wed, 6 Aug 2008 11:59:35 +0000 Subject: [PATCH] remove return value, this function returns void. 2008-08-06 Michael Natterer * modules/printbackends/cups/gtkcupsutils.c (gtk_cups_connection_test_free): remove return value, this function returns void. svn path=/trunk/; revision=21022 --- ChangeLog | 6 ++++++ modules/printbackends/cups/gtkcupsutils.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9efa5b1192..f89863d424 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-08-06 Michael Natterer + + * modules/printbackends/cups/gtkcupsutils.c + (gtk_cups_connection_test_free): remove return value, this + function returns void. + 2008-08-06 Michael Natterer * gtk/gtkcombobox.c diff --git a/modules/printbackends/cups/gtkcupsutils.c b/modules/printbackends/cups/gtkcupsutils.c index 09cd6906cf..d11653b359 100644 --- a/modules/printbackends/cups/gtkcupsutils.c +++ b/modules/printbackends/cups/gtkcupsutils.c @@ -1303,7 +1303,7 @@ void gtk_cups_connection_test_free (GtkCupsConnectionTest *test) { if (test == NULL) - return FALSE; + return; test->current_addr = NULL; httpAddrFreeList (test->addrlist); -- 2.30.2